Knowledge

loading.. Please Wait

Quisquam magni maxime quo laboriosam modi numquam quo ducimus.

  • Last Created On Nov 09, 2015
  • 51
4 5

You must be logged in and have valid account to access this content.

Views: 51

Recent Articles

  • Hic corporis minus voluptatem iste maior...
    50
  • Facere modi excepturi illo error enim at...
    100
  • Quisquam magni maxime quo laboriosam mod...
    51
  • Tempore vitae dolor nostrum qui eveniet...
    100
  • Culpa sit quas est illo dicta iusto.
    50

Popular Articles

  • Facere modi excepturi illo error enim at...
    100
  • Tempore vitae dolor nostrum qui eveniet...
    100
  • Veniam voluptate qui suscipit alias volu...
    100
  • Veritatis repellendus dolorem quia volup...
    100
  • Doloremque repellendus aperiam aut.
    100
`; // // Send AJAX request // fetch('https://uhelp.spruko.com/uhelp/translate', { // method: 'POST', // headers: { // 'Content-Type': 'application/json', // 'X-CSRF-TOKEN': 'IKXoyH1ORJZpjPWD2sTSukI4vgiVddwXlE4k8c4H', // }, // body: JSON.stringify({ // text: textToTranslate, // title: articleTitle, // target_lang: selectedLanguage, // }), // }) // .then(response => response.json()) // .then(data => { // if (data.success) { // modal.hide(); // console.log(data.translated_text); // document.querySelector('.description').innerHTML = data.translated_text; // document.querySelector('.articletitle').innerHTML = data.translated_title; // } else { // toastr.error('Translation failed: ' + data.message); // } // }) // .catch(error => { // console.error('Error:', error); // alert('An error occurred.'); // }); // }); document.getElementById('translateButtonSave').addEventListener('click', function () { const selectedLanguage = document.getElementById('translate-lang').value; const textToTranslate = document.querySelector('.description'); const articleTitle = document.querySelector('.articletitle').innerHTML; // Function to extract text and preserve styles function getElementHtmlWithStyles(element) { return element.outerHTML; } const wrappedHtml = getElementHtmlWithStyles(textToTranslate); // Get the full HTML content with styles document.querySelector('.articlecard').style.filter = "blur(2px)"; document.getElementById('hideAfterloading')?.classList.remove('d-none'); modal.hide(); fetch('https://uhelp.spruko.com/uhelp/translate', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': 'IKXoyH1ORJZpjPWD2sTSukI4vgiVddwXlE4k8c4H', }, body: JSON.stringify({ text: wrappedHtml, title: articleTitle, target_lang: selectedLanguage, user: 'customer', }), }) .then(response => response.json()) .then(data => { if (data.success) { document.querySelector('.articlecard').style.filter = ""; document.getElementById('hideAfterloading')?.classList.add('d-none'); document.querySelector('.description').innerHTML = data.translated_text; document.querySelector('.articletitle').innerHTML = data.translated_title; } else { toastr.error('Translation failed: ' + data.message); document.querySelector('.articlecard').style.filter = ""; document.getElementById('hideAfterloading')?.classList.add('d-none'); } }) .catch(error => { console.error('Error:', error); alert('An error occurred.'); }); });